Please complete the following exercises on this page. When complete post the page to your WDV221 folder on the server. Make a link in your WDV221 Intro Javascript page for this assignment. Contact your instructor and demonstrate that you have completed the assignment.
Using Blackboard complete the In Class Exercise Assignment. Download your Homework project and being working on it with your remaining time.
Use the following data for both functions.
Course Number | Course Name |
WDV101 | Intro HTML and CSS |
WDV151 | Intro Web Design |
WDV221 | Intro Javascript |
1. Create a function called lookupCourse(). This function will take the Course Number that you enter and display the corresponding Course Name on the form. If no match is found display "Course Name not found" in the Course Name field. This function should use If statements to provide the answer.
2. Create a function called lookupCourseSwitch(). This function will take the Course Number that you enter and display the corresponding Course Name on the form. If no match is found display "Course Name not found" in the Course Name field. This function should use a Javascript Switch statement to find the matching Course Name. It should use the 'default' option to display the "Course Name not found" message.